What is Union, minus and Interact commands?
5412
12-Sep-2019
Updated on 23-Sep-2020
Anonymous User
12-Sep-2019The UNION operator is used to combining the results of two tables, and it eliminates duplicate rows from the tables.
The MINUS operator is used to returning rows from the first query but not from the second query. The matching records of the first and second query and other rows from the first query will be displayed as a result set.
The INTERSECT operator is used to return rows returned by both the queries.